home *** CD-ROM | disk | FTP | other *** search
/ Hardcore Visual Basic 5.0 (2nd Edition) / Hardcore Visual Basic 5.0 - Second Edition (1997)(Microsoft Press).iso / Code / UNREGI~1.BAT < prev    next >
DOS Batch File  |  1997-06-14  |  365b  |  16 lines

  1. @ECHO OFF
  2.  
  3. CHDIR Debug
  4. ECHO Unregistering components and servers (debug)
  5. FOR %%I IN (*.DLL) DO ..\Tools\RegSvr32.exe /s /u %%I
  6. FOR %%I IN (*.EXE) DO %%I /unregserver
  7.  
  8. CHDIR ..\Release
  9. ECHO Unregistering components and servers (release)
  10. FOR %%I IN (*.DLL) DO ..\Tools\RegSvr32.exe /s /u %%I
  11. FOR %%I IN (*.EXE) DO %%I /unregserver
  12.  
  13. CHDIR ..
  14.  
  15. ECHO Done
  16.